home *** CD-ROM | disk | FTP | other *** search
/ Risc World 5 / Risc World 5.iso / SOFTWARE / Issue5 / PD / DIRSYNC / LegalStuff / ccres / c / _FontMenu < prev    next >
Text File  |  2004-03-20  |  2KB  |  55 lines

  1. /* _FontMenu.c
  2.    $Id: _FontMenu.c,v 1.2 2004/03/20 22:13:35 joty Exp $
  3.  
  4.    Copyright (c) 2003-2004 Dave Appleby / John Tytgat
  5.  
  6.    This file is part of CCres.
  7.  
  8.    CCres is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2 of the License, or
  11.    (at your option) any later version.
  12.  
  13.    CCres is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with CCres; if not, write to the Free Software
  20.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  */
  22.  
  23. #include "ccres.h"
  24.  
  25. #include <stdio.h>
  26. #include <string.h>
  27.  
  28. #include <OSLib/fontmenu.h>
  29.  
  30. static FLAGS FontMenuFlags[] = {
  31.     {fontmenu_GENERATE_ABOUT_TO_BE_SHOWN , "fontmenu_GENERATE_ABOUT_TO_BE_SHOWN" },
  32.     {fontmenu_GENERATE_DIALOGUE_COMPLETED, "fontmenu_GENERATE_DIALOGUE_COMPLETED"},
  33.     {fontmenu_GENERATE_HAS_BEEN_HIDDEN   , "fontmenu_GENERATE_HAS_BEEN_HIDDEN"   },
  34.     {fontmenu_INCLUDE_SYSTEM_FONT        , "fontmenu_INCLUDE_SYSTEM_FONT"        }
  35. };
  36.  
  37. static OBJECTLIST FontMenuObjectList[] = {
  38.     {iol_FLAGS,  "fontmenu_flags:", offsetof(fontmenu_object, flags),       FontMenuFlags, ELEMENTS(FontMenuFlags)},
  39.     {iol_STRING, "ticked_font:",    offsetof(fontmenu_object, ticked_font), NULL,          0                      }
  40. };
  41.  
  42.  
  43. int _fontmenu(PDATA data, PSTR pszIn, toolbox_relocatable_object_base * object)
  44. {
  45.     put_objects(data, pszIn, 0, (PSTR) (object + 1), FontMenuObjectList, ELEMENTS(FontMenuObjectList));
  46.  
  47.     return(sizeof(fontmenu_object));
  48. }
  49.  
  50.  
  51. void fontmenu(FILE * hf, toolbox_resource_file_object_base * object, PSTR pszStringTable, PSTR pszMessageTable)
  52. {
  53.     get_objects(hf, pszStringTable, pszMessageTable, (PSTR) (object + 1), FontMenuObjectList, ELEMENTS(FontMenuObjectList), 1);
  54. }
  55.